Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release build for MinGW CI; Fix GCC 12/13 warnings #1536

Merged
merged 2 commits into from
Apr 17, 2024

Conversation

justsmth
Copy link
Contributor

@justsmth justsmth commented Apr 17, 2024

Issues:

Resolves:

Description of changes:

  • Perform "release" build for MinGW in the CI.
  • Address several GCC 12/13 warnings

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.

@justsmth justsmth changed the title [DRAFT] MinGW CI - Release build Release build for MinGW CI; Fix GCC 12/13 warnings Apr 17, 2024
@justsmth justsmth marked this pull request as ready for review April 17, 2024 18:22
@justsmth justsmth requested a review from a team as a code owner April 17, 2024 18:22
for (size_t i = 0; i < len; i++) {
// GCC 12/13 report `stringop-overflow` on the following line
// without additional condition: `i < sizeof(int64_t)`
for (size_t i = 0; i < len && i < sizeof(int64_t); i++) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

huh, that can already be deduced from (len > sizeof(int64_t)....

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I believe so. But gcc-13 seems to think otherwise:

/Users/justsmth/repos/aws-lc/crypto/bytestring/cbs.c: In function 'CBS_get_asn1_int64':
/Users/justsmth/repos/aws-lc/crypto/bytestring/cbs.c:534:20: error: writing 1 byte into a region of size 0 [-Werror=stringop-overflow=]
  534 |     sign_extend[i] = data[len - i - 1];
      |     ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
/Users/justsmth/repos/aws-lc/crypto/bytestring/cbs.c:521:11: note: at offset 8 into destination object 'sign_extend' of size 8
  521 |   uint8_t sign_extend[sizeof(int64_t)];
      |           ^~~~~~~~~~~

¯\_(ツ)_/¯

@@ -442,7 +442,7 @@ ECDSA_SIG *ecdsa_digestsign_no_self_test(const EVP_MD *md, const uint8_t *input,
const uint8_t *nonce,
size_t nonce_len) {
uint8_t digest[EVP_MAX_MD_SIZE];
unsigned int digest_len;
unsigned int digest_len = EVP_MAX_MD_SIZE;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be zero, no?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe EVP_MAX_MD_SIZE is correct. This value gets dereferenced as the len parameter in the call to EVP_DigestFinalXOF.

@justsmth justsmth merged commit 77c88cd into aws:main Apr 17, 2024
46 checks passed
@justsmth justsmth deleted the maybe-uninit-fail branch May 16, 2024 13:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants